gusucode.com > 基于matlab GUI界面的雷达仿真代码 具有丰富的参数选项 如目标个数,频率,脉冲宽度 > 基于matlab GUI界面的雷达仿真代码 具有丰富的参数选项 如目标个数,频率,脉冲宽度/RADAR simulation code/placeClutter.m

    
function h=placeClutter(h)
    mountains = h.mountains;
    temp = get(gca,'CurrentPoint');
    XY = temp(1,1:2);
    RCS = 1e4;
    v = 0;
    a = 0;
    mountains(end+1).RCS =RCS;
    mountains(end).XY = XY;
    mountains(end).v = 0;
    mountains(end).a = 0;
    h.mountains = mountains(:);
    plot(XY(1),XY(2),'*k','MarkerSize',10,'tag','mountain');
    guidata(h.radarDisplay,h);